home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / lisp / clisp-li.000 / clisp-li / clisp-1996-07-22 / regexp / README < prev    next >
Encoding:
Text File  |  1995-04-24  |  635 b   |  29 lines

  1. This directory contains a CLISP add-on module for regular expression matching
  2. and searching.
  3. The library routines regex.[ch] come from the GNU findutils-4.1.
  4.  
  5. To install it,
  6.  
  7. 1. If you are not building clisp in the src/ directory:
  8.        mkdir regexp
  9.        cd regexp
  10.        ln ../../src/regexp/* .
  11.  
  12. 2. run
  13.        ./configure
  14.        cd ..
  15.  
  16. 3. build clisp
  17.        make
  18.  
  19. 4. compile regexp.lsp
  20.        base/lisp.run -M base/lispinit.mem -c regexp/regexp.lsp
  21.  
  22. 5. make a new linking set
  23.        clisp-link add-module-set regexp base base+regexp
  24.  
  25. 6. try it
  26.        base+regexp/lisp.run -M base+regexp/lispinit.mem
  27.        (use-package "REGEXP")
  28.  
  29.